==================================
Flu[X]'s Dump & Append Utils v1.00
==================================

These simple utils will Dump a section of a file to another file
or append them to an existing file.

Usage is as follows: (Everything is in HEX)

Dump <SourceFile> <TargetFile> <StartingOffset> <#OfBytesToDump>

So say you wanted to dump DAh bytes starting at offset 78AAh of the
file happy.exe to a file called dump.txt.. you would type the
following:

Dump happy.exe dump.txt 78AA DA

Append is Similar in use except it appends it to the END of an
existing file!

==========================
Flu[X]'s Quick Patch v1.00
==========================

This simple utility will patch a file from the command line.

Usage is as follows: (Everything is in HEX).

qpatch <FileToPatch> <Offset to start> <NewByte1> <NewByte2> ... etc

So say you wanted to change 4 bytes in the file example.exe sstarting
at offset 678Bh. say you wanted to add 4 "00" bytes. You would type:

qpatch example.exe 678B 00 00 00 00

Remember EVERYTHING is in HEX (easy to remember that way).

Flu[X]